home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / pctj0787.arc / DSPYINFO.MK < prev    next >
Text File  |  1987-04-06  |  377b  |  20 lines

  1. # makefile for the DSPYINFO program
  2.  
  3. # --- symbolic names ---
  4. MODEL = S    # used by tools.ini
  5. OBJS = ega_info.obj getstate.obj memchk.obj
  6.  
  7. # --- the DSPYINFO program ---
  8. dspyinfo.exe:    dspyinfo.obj $(OBJS)
  9.     link $* $(OBJS), $*, nul;
  10.  
  11. # --- linkable objects ---
  12. ega_info.obj:    ega_info.c
  13.  
  14. getstate.obj:    getstate.c
  15.  
  16. memchk.obj:    memchk.c
  17.  
  18. dspyinfo.obj:    dspyinfo.c
  19.  
  20.